@bleed-believer/meta
Adds metadata easifuly to your objects. Now this package is compatible with CommonJS and ECMAScript Modules.
Installation
Use npm to get the last version:
npm i --save @bleed-believer/meta
Concepts
To understand how this library works, first we need to define some concepts:
Target:
Any object that you want to write inside of, data about itself. It's common, for example, have classes that you need to specify how these classes will be instantiated and used for a particular third party tool or library. So in thoses cases you may need to write data dinamically into the prototype por example.
Metadata:
The data do you want to attach to the target. This data normally describes how to use the target object to another one that requires for it. We use interfaces to describe the structure of a kind of metadata.
How to use
-
First create an interface with the structure of your metadata:
export interface EndpointMeta {
path: string;
routes: {
method: string;
key: string;
}[];
}
-
Create a new instance of MetaManager
:
export const ENDPOINT = new MetaManager<EndpointMeta>();
-
Now you can attach metadata into your objects:
import { ENDPOINT } from './endpoint.js';
export class UserController {
get(): Promise<void> {
}
set(): Promise<void> {
}
}
ENDPOINT.set(UserController, {
path: 'user',
routes: [
{ method: 'GET', key: 'get' },
{ method: 'POST', key: 'set' },
]
});
-
...or get its metadata:
import { UserController } from './user.controller.js';
import { ENDPOINT } from './endpoint.js';
const meta = ENDPOINT.get(UserController);
console.log(meta);